home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / adult_ed / weather / makefile < prev    next >
Makefile  |  1995-05-02  |  734b  |  15 lines

  1. #    This is the makefile for the WEATHER program.  It is a makefile for
  2. # Mark Williams' C for the Atari ST series of computers.  NOTE:  If you want
  3. # to use the CSD symbolic debugger, then the CFLAGS needs to have the -VCSD
  4. # switch in it as well as the cc command will have the -VCSD switch in it
  5. # too.  Also, the executable created would best be a .PRG program.  If on the
  6. # other hand you didn't want to use the symbolic debugger, then remove the
  7. # -VCSD switch from both the CFLAGS and from the cc command, and make the
  8. # executable a .TOS program.
  9. #    Written by Rod Falanga
  10.  
  11. OBJ = weather.o dew_pt.o forecast.o heatindx.o humidity.o windchil.o
  12. CFLAGS = -O -A
  13. weather.tos: $(OBJ)
  14.     cc -f -o weather.tos $(OBJ) -lr -lm
  15.